home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
os2
/
clone200.zip
/
USER.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-11-06
|
669b
|
30 lines
@echo on
REM
REM User Function from Clone Cleaner (CloneCln.Exe)
REM
REM Parameters %1 = Filename, %2=A | B, %3=FileSize */
REM
if %2. == A. goto ascii
if %2. == B. goto binary
:ascii
echo Ascii File %1 %3 >> user.txt
echo ----------------------------------------------------> temp1.txt
echo *** Clone Cleaner Says THIS FILE HAS DUPLICATES *** > temp1.txt
echo ---------------------------------------------------->> temp1.txt
copy temp1.txt+%1 temp2.txt
del %1
copy temp2.txt %1
del temp1.txt
del temp2.txt
goto done
:binary
echo Binary File %1 %3 >> user.txt
goto done
:done